home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / eText5 / Source / eTURLink.subproj / eTURLink.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-29  |  1.0 KB  |  30 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //    FILENAME:    eTURLink.h 
  3. //    SUMMARY:    Interface for a URL Annotation
  4. //    SUPERCLASS:    eTImage
  5. //    INTERFACE:    None
  6. //    PROTOCOLS:    <Annotation,HTMDSupport,ASCIISupport,LaTeXSupport,Tool,
  7. //                InspectableTarget>
  8. //    AUTHOR:        Rohit Khare
  9. //    COPYRIGHT:    (c) 1994 California Institure of Technology, eText Project
  10. ///////////////////////////////////////////////////////////////////////////////
  11. //    DESCRIPTION
  12. //        Holds an URLrep and tries to NXPerformService("Open URL").
  13. ///////////////////////////////////////////////////////////////////////////////
  14. //    HISTORY
  15. //    10/30/94:    Modified to support <InspectableTarget>
  16. //  07/20/94:    Minimal Creation
  17. ///////////////////////////////////////////////////////////////////////////////
  18.  
  19. #import "eTextKernel.h"
  20. #import "../eTImage.subproj/eTImage.h"
  21. #import "eTURLinkUI.h"
  22.  
  23. @interface eTURLink:eTImage <Annotation, Tool, ASCIISupport, HTMDSupport,LaTeXSupport>
  24. {
  25.     char *URLRep;
  26. }
  27.  
  28. - setURL: (const char *) newURL;
  29. - (char *) URL;
  30. @end